home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat2 / mkfifo.0 < prev    next >
Text File  |  1996-09-01  |  3KB  |  81 lines

  1.  
  2. MKFIFO(2)                  UNIX Programmer's Manual                  MKFIFO(2)
  3.  
  4. NNAAMMEE
  5.      mmkkffiiffoo - make a fifo file
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssyyss//ttyyppeess..hh>>
  9.      ##iinncclluuddee <<ssyyss//ssttaatt..hh>>
  10.  
  11.      _i_n_t
  12.      mmkkffiiffoo(_c_o_n_s_t _c_h_a_r _*_p_a_t_h, _m_o_d_e___t _m_o_d_e)
  13.  
  14. DDEESSCCRRIIPPTTIIOONN
  15.      MMkkffiiffoo() creates a new fifo file with name _p_a_t_h. The access permissions
  16.      are specified by _m_o_d_e and restricted by the umask(2) of the calling pro-
  17.      cess.
  18.  
  19.      The fifo's owner ID is set to the process's effective user ID.  The fi-
  20.      fo's group ID is set to that of the parent directory in which it is cre-
  21.      ated.
  22.  
  23. RREETTUURRNN VVAALLUUEESS
  24.      A 0 return value indicates success.  A -1 return value indicates an er-
  25.      ror, and an error code is stored in _e_r_r_n_o.
  26.  
  27. EERRRROORRSS
  28.      MMkkffiiffoo() will fail and no fifo will be created if:
  29.  
  30.      [EOPNOTSUPP]  The kernel has not been configured to support fifo's.
  31.  
  32.      [ENOTDIR]     A component of the path prefix is not a directory.
  33.  
  34.      [ENAMETOOLONG]
  35.                    A component of a pathname exceeded {NAME_MAX} characters,
  36.                    or an entire path name exceeded {PATH_MAX} characters.
  37.  
  38.      [ENOENT]      A component of the path prefix does not exist.
  39.  
  40.      [EACCES]      Search permission is denied for a component of the path
  41.                    prefix.
  42.  
  43.      [ELOOP]       Too many symbolic links were encountered in translating the
  44.                    pathname.
  45.  
  46.      [EROFS]       The named file resides on a read-only file system.
  47.  
  48.      [EEXIST]      The named file exists.
  49.  
  50.      [ENOSPC]      The directory in which the entry for the new fifo is being
  51.                    placed cannot be extended because there is no space left on
  52.                    the file system containing the directory.
  53.  
  54.      [ENOSPC]      There are no free inodes on the file system on which the
  55.                    fifo is being created.
  56.  
  57.      [EDQUOT]      The directory in which the entry for the new fifo is being
  58.                    placed cannot be extended because the user's quota of disk
  59.                    blocks on the file system containing the directory has been
  60.                    exhausted.
  61.  
  62.      [EDQUOT]      The user's quota of inodes on the file system on which the
  63.                    fifo is being created has been exhausted.
  64.  
  65.      [EIO]         An I/O error occurred while making the directory entry or
  66.  
  67.                    allocating the inode.
  68.  
  69.      [EIO]         An I/O error occurred while reading from or writing to the
  70.                    file system.
  71.  
  72.      [EFAULT]      _P_a_t_h points outside the process's allocated address space.
  73.  
  74. SSEEEE AALLSSOO
  75.      chmod(2),  stat(2),  umask(2)
  76.  
  77. SSTTAANNDDAARRDDSS
  78.      The mmkkffiiffoo function call conforms to IEEE Std1003.1-1988 (``POSIX'').
  79.  
  80. BSD Experimental                 June 4, 1993                                2
  81.